home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Application / Application.h < prev    next >
Text File  |  2000-06-23  |  508b  |  29 lines

  1. // Application.h
  2.  
  3. #ifndef Application_h
  4. #define Application_h
  5.  
  6. #ifndef ApplicationBase_h
  7. #include "ApplicationBase.h"
  8. #endif
  9. #ifndef CommandLink_h
  10. #include "CommandLink.h"
  11. #endif
  12. #ifndef Quitting_h
  13. #include "Quitting.h"
  14. #endif
  15.  
  16. class Application: public ApplicationBase
  17.   {
  18.     private:
  19.         CommandLink< Creating > creatingLink;
  20.         CommandLink< Opening > openingLink;
  21.         CommandLink< Quitting > quittingLink;
  22.         
  23.     public:
  24.         Application( uint32 masterPointers = 128,
  25.                          uint32 extraStackSpace = 0 );
  26.   };
  27.  
  28. #endif
  29.